系统环境:rhel6在服务器端和客户端安装nfs服务,安装rpcbind支持nfs远程映射本地。同时设置开机自启动。[root@server~]#serviceiptablesstop[root@server~]#yum-yinstallnfs-utilsrpcbind[root@server~]#rpm-qanfs*nfs4-acl-tools-0.3.3-5.el6.i686nfs-utils-1.2.3-7.el6.i686..
分类:
其他好文 时间:
2014-05-12 03:20:21
阅读次数:
320
设置/etc/yum.repos.d/CentOS-Debuginfo.repo,修改[debug项下的enabled的值为1];debuginfo-install
glibc libgcc libstdc++;
分类:
数据库 时间:
2014-05-12 02:27:00
阅读次数:
399
Sort a linked list using insertion
sort.//用到O(N)的额外空间public class Solution { public ListNode
insertionSortList(ListNode head) { if(head==nul...
分类:
其他好文 时间:
2014-05-11 23:59:09
阅读次数:
405
邻接矩阵的图示:
构建一个这样的无向邻接矩阵。
参考网站: http://www.geeksforgeeks.org/graph-and-its-representations/
这里写了个类,增加删除图的操作。
#pragma once
#include
#include
class AdjListGraph
{
struct Node
{
int dest;
...
分类:
其他好文 时间:
2014-05-11 22:44:20
阅读次数:
378
链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=151
For each list of words, output a line with each word reversed without changing the order of the words.
This problem contains multi...
分类:
其他好文 时间:
2014-05-11 22:20:43
阅读次数:
443
想编写安卓游戏,java太难,来试试App Inventor,虽然有人认为他是中学生的玩具,但是也能编写2048这样的火爆游戏,不需要太复杂的算法。
整个游戏有几个模块:
一、游戏初始化
数列转化为图形,使用了canvas和精灵,相对应list,这里注意精灵位置是固定的,只是更改图片,多少分,就对于n.jpg,0分是底色图片。左右移动,使用了flung判断,绝对值判断,水平速度和垂直...
分类:
移动开发 时间:
2014-05-11 20:05:17
阅读次数:
595
Given a linked list, reverse the nodes of a
linked listkat a time and return its modified list.If the number of nodes is not
a multiple ofkthen left-o...
分类:
其他好文 时间:
2014-05-11 18:15:52
阅读次数:
300
题目链接刷刷Python基本功...列表解析附上代码:1 x = int(input())2 y =
int(input())3 z = int(input())4 n = int(input())5 print [[i, j, k] for i in
xrange(x+1) for j in xr...
分类:
其他好文 时间:
2014-05-11 18:05:07
阅读次数:
276
/// /// 返回insert后的主键值 /// /// /// /// public static
int ExecuteSql(string SQLString, List para) ...
分类:
数据库 时间:
2014-05-11 16:07:50
阅读次数:
400
Reverse a linked list from positionmton. Do it
in-place and in one-pass.For example:Given1->2->3->4->5->NULL,m=
2 andn= 4,return1->4->3->2->5->NULL.No...
分类:
其他好文 时间:
2014-05-11 16:03:43
阅读次数:
327